summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx b/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx
index 3ebf93b3..8735e3d6 100644
--- a/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx
+++ b/app/[lng]/evcp/(evcp)/docu-list-rule/page.tsx
@@ -4,8 +4,8 @@ import { redirect } from "next/navigation"
export default async function DocumentNumberingPage({
params,
}: {
- params: { lng: string }
+ params: Promise<{ lng: string }>
}) {
- // Code Group 페이지로 리다이렉트
- redirect(`/${params.lng}/evcp/docu-list-rule/document-class`)
+ const { lng } = await params
+ redirect(`/${lng}/evcp/docu-list-rule/document-class`)
} \ No newline at end of file